home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / LISTINGS / V_12_05 / ALLISON.ZIP / SHARE.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-24  |  286 b   |  17 lines

  1. LISTING 12 - Shows that tags and variables share the same
  2. namespace
  3. #include <iostream.h>
  4.  
  5. struct pair {int x; int y;};
  6.  
  7. main()
  8. {
  9.     int pair = 0;
  10.     pair p = {pair,pair};     // error
  11.  
  12.     cout << pair << endl;
  13.     cout << p.x << ',' << p.y << endl;
  14.     return 0;
  15. }
  16.  
  17.